In this article, I will show you how to use animate in jQuery for “like” button. Create a css class with background image, size, transition and animation effects, etc. for implementing twitter’s social like button using css3 library.
When the user clicks the like button heart it will be bursting for the period of time continuously. The image background position changes from left to right using jQuery button animation effects.
Step 1: Create a css class file and named as heart.css. Copy and paste the following code.
.heart {
cursor: pointer;
height: 50px;
width: 50px;
background-image: url( 'http://www.infinetsoft.com/Uploads/20161111063754heartanimation.png');
background-position: left;
background-repeat: no-repeat;
background-size: 2900%;
}
.heart:hover {
background-position: right;
}
.animating {
animation: heart-burst .800s steps(28) 2;
}
@keyframes heart-burst {
from {
background-position: left;
}
to {
background-position: right;
}
}
Step 2: Copy and paste the following code.
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function () {
$(".heart").on('click touchstart', function () {
$(this).toggleClass('animating');
});
$(".heart").on('animationend', function () {
$(this).toggleClass('animating');
});
});
</script>
<div class="heart"> </div>
jQuery animate examples:
Post your comments / questions
Recent Article
- How to create custom 404 error page in Django?
- Requested setting INSTALLED_APPS, but settings are not configured. You must either define..
- ValueError:All arrays must be of the same length - Python
- Check hostname requires server hostname - SOLVED
- How to restrict access to the page Access only for logged user in Django
- Migration admin.0001_initial is applied before its dependency admin.0001_initial on database default
- Add or change a related_name argument to the definition for 'auth.User.groups' or 'DriverUser.groups'. -Django ERROR
- Addition of two numbers in django python
Related Article